Component org.nuxeo.ecm.user.center.dashboard.pageproviders
In bundle org.nuxeo.ecm.user.center.dashboard
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.user.center.dashboard.pageproviders">
<extension target="org.nuxeo.ecm.platform.query.api.PageProviderService"
point="providers">
<coreQueryPageProvider name="user_domains">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:primaryType = 'Domain' AND
ecm:mixinType != 'HiddenInNavigation' AND ecm:currentLifeCycleState !=
'deleted'
</pattern>
<sort column="dc:title" ascending="true" />
<pageSize>0</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="domain_documents">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:path STARTSWITH ?
AND ecm:mixinType != 'Folderish' AND ecm:mixinType !=
'SystemDocument' AND ecm:mixinType !=
'HiddenInNavigation' AND ecm:isCheckedInVersion = 0 AND ecm:isProxy = 0
AND ecm:currentLifeCycleState != 'deleted'
</pattern>
<sort column="dc:modified" ascending="false" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="domain_published_documents">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:path STARTSWITH ? AND ecm:mixinType !=
'Folderish' AND ecm:mixinType != 'HiddenInNavigation' AND
ecm:mixinType != 'SystemDocument' AND
ecm:isCheckedInVersion = 0 AND ecm:isProxy = 1
</pattern>
<sort column="dc:modified" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="user_documents">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE dc:contributors = ? AND ecm:mixinType !=
'Folderish' AND ecm:mixinType != 'HiddenInNavigation' AND
ecm:mixinType != 'SystemDocument' AND
ecm:isCheckedInVersion = 0 AND ecm:isProxy = 0 AND
ecm:currentLifeCycleState != 'deleted' AND ecm:path STARTSWITH ?
</pattern>
<sort column="dc:modified" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="user_sections">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:primaryType = 'Section' AND
ecm:mixinType != 'HiddenInNavigation' AND ecm:path STARTSWITH ?
</pattern>
<sort column="dc:modified" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="user_sites">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE ecm:mixinType = 'WebView' AND
ecm:currentLifeCycleState != 'deleted' AND webc:isWebContainer = 1 AND
ecm:path STARTSWITH ?
</pattern>
<sort column="webc:name" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="user_workspaces">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Workspace WHERE ecm:mixinType != 'HiddenInNavigation' AND
ecm:currentLifeCycleState != 'deleted' AND ecm:isProxy = 0 AND ecm:path
STARTSWITH ?
</pattern>
<sort column="dc:title" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
<coreQueryPageProvider name="user_deleted_documents">
<property name="maxResults">DEFAULT_NAVIGATION_RESULTS</property>
<pattern>
SELECT * FROM Document WHERE dc:contributors = ? AND ecm:mixinType !=
'Folderish' AND ecm:mixinType != 'HiddenInNavigation' AND
ecm:mixinType != 'SystemDocument' AND
ecm:isCheckedInVersion = 0 AND ecm:isProxy = 0 AND
ecm:currentLifeCycleState = 'deleted'
</pattern>
<sort column="dc:modified" ascending="true" />
<pageSize>5</pageSize>
</coreQueryPageProvider>
</extension>
</component>